home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Archive Magazine CD 1995
/
Archive Magazine CD 1995.iso
/
discs
/
prog_disc
/
volume_3
/
issue04
/
c
/
c_4_3
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-12-11
|
237 b
|
9 lines
#include <stdio.h>
int main( int argc, char *argv[] )
{
printf( "This goes to the standard output\n" );
fprintf( stderr, "This goes to the standard error\n" );
fprintf( stdout, "This is standard output again\n" );
}